home *** CD-ROM | disk | FTP | other *** search
/ Champak 54 / Vol 54.iso / games / turttleo.swf / scripts / DefineSprite_349 / frame_1 / DoAction.as
Encoding:
Text File  |  2007-10-01  |  349 b   |  23 lines

  1. txt_dtxt.text = xml_lang.txt_showtips;
  2. if(_global.show_tips)
  3. {
  4.    this.gotoAndStop(2);
  5. }
  6. else
  7. {
  8.    this.gotoAndStop(1);
  9. }
  10. this.onRelease = function()
  11. {
  12.    if(_global.show_tips)
  13.    {
  14.       _global.show_tips = false;
  15.       this.gotoAndStop(1);
  16.    }
  17.    else
  18.    {
  19.       _global.show_tips = true;
  20.       this.gotoAndStop(2);
  21.    }
  22. };
  23.